/**
* Fonts
*/
@font-face {
    font-family: 'Cervo';
    src: url("/GLOBAL/fonts/cervo-regular.otf");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CervoLt';
    src: url("/GLOBAL/fonts/cervo-light.otf");
    font-weight: lighter;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CervoMed';
    src: url("/GLOBAL/fonts/cervo-medium.otf");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CervoItalic';
    src: url("/GLOBAL/fonts/cervo-regular-italic.otf");
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'CervoLtItalic';
    src: url("/GLOBAL/fonts/cervo-light-italic.otf");
    font-weight: lighter;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Reader';
    src: url("/GLOBAL/fonts/reader-regular.otf");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Reader';
    src: url("/GLOBAL/fonts/reader-italic.otf");
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Reader';
    src: url("/GLOBAL/fonts/reader-bold.otf");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/*
 * --------- SITE VARIABLES ---------
 */

 :root {
    /* primary colors */
    --blue: #0064DF;
    --pink: #DA5097;
    --yellow: #FFBB02;
    --green: #00DFA3;

    /* secondary colors */
    --purple: #6756E2;
    --lightblue: #4CB5E7;
    --orange: #EE8100;
    --teal: #21B7AF;

    /* grays */
    --darkgray: #1D3D59;
    --meddkgray: #697FA5;
    --medltgray: #ADBFD8;
    --ltgray: #DFE8EF;

    /* fonts */
    --bodycopy: 'Reader', Helvetica, sans-serif;
    --heads: "CervoMed", "Arial Narrow", Arial, serif;

    --alert: #f9a63b;
}



/**
 * Tags
 */

 html {
    -webkit-font-smoothing: antialiased;
 }

body, p, td, div, th {
    font-family: var(--bodycopy);
    font-weight: 400;
    font-size: 1em;
    line-height: 1.5em;
    color: var(--darkgray);
}


strong, b {
    font-weight: 600;
}

em {
    font-weight: 400i;
}

strong em, em strong {
    font-weight: 600i;
}

th {
    border-bottom: 1px solid var(--darkgray);
    text-align: left;
    font-weight: bold;
    background-color: var(--darkgray);
    color: #fff;
}

h1 {
    font-family: var(--heads);
    font-size: 2.2em;
    line-height: 1.4em;
    text-transform: uppercase;
    margin: 10px 0px 0px 0px;
    color: var(--pink);
}

h2 {
    font-family: var(--heads);
    font-size: 1.6em;
    line-height: 1.5em;
    text-transform: uppercase;
    margin: 20px 0px 0px 0px;
    padding: 0px;
    color: var(--blue);
}

h3 {
    font-family: var(--bodycopy);
    font-size: 1.2em;
    text-transform: none;
    margin: 20px 0px 0px 0px;
    padding: 0px;
    color: var(--pink);
}

h4 {
    font-family: var(--bodycopy);
    font-size: 1.1em;
    text-transform: none;
    margin: 20px 0px 0px 0px;
    padding: 0px;
    color: var(--purple);
}

table {
    margin-top: 10px;
}

th, td {
    padding: 5px;
}

li {
    padding-bottom: 8px;
}

hr {
    color: var(--teal);
    size: 1px;
}

img {
    vertical-align: middle;
    text-align: center;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

div {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}


/**
 * Links
 */

a {
    color: var(--blue);
    text-decoration: underline;
    cursor: pointer;
}

a:hover {
    color: var(--pink);
    text-decoration: none;
}

a.white {
    color: #ffffff;
    text-decoration: underline;
}

a.white:hover {
    color: var(--pink);
    text-decoration: none;
}

a.top-page-button input[type=button] {
    margin: 18px 0 24px 0;
}


/**
 * Toggle
 */

.hidden { display: none; }
.unhidden { display: block; }


/**
 * Color Classes
 */
/*** PRIMARY ***/
.blue {
    color: var(--blue);
}
.pink {
    color: var(--pink);
}
.yellow {
    color: var(--yellow);
}
.green {
    color: var(--green);
}

/*** SECONDARY ***/
.purple {
    color: var(--purple);
}
.lightblue {
    color: var(--lightblue);
}
.orange {
    color: var(--orange);
}
.teal {
    color: var(--teal);
}

/*** GRAYS ***/
.dark_gray{
    color: var(--darkgray);
}
.meddk_gray{
    color: var(--meddkgray);
}
.medlt_gray{
    color: var(--medltgray);
}
.light_gray{
    color: var(--ltgray);
}


/**
 * Global Style
 */

html {
    height: 100%;
}

body {
    margin: 0px 0px 0px 0px;
    background-color: #ffffff;
    height: 100%;
}


/**
 * Layout
 */

.header-background{
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    width: 100%;
    height: 100px;
    padding: 0 40px;
    background-image: url("/2026/template/images/bg_gradient_blue_green.png");
    background-repeat: no-repeat;
    background-size: cover;
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}

#header-logo {
    max-width: 1200px;
    padding: 0px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

#header-logo #main-menu-links {
    padding-top: 26px;
}

#main-logo {
    cursor: pointer;
    height: 60px;
}
/*
@media (max-width: 600px) {
    #header-logo {
        text-align: center;
    }
}
*/
#header-image {
    width: 100%;
    /*height: 100%;
    margin: auto;
    max-height: 610px;
    overflow: hidden;*/
}

#header-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
}

@media (max-width: 1600px){
    #header-image img{
        height: 100%;
    }
}
@media (max-width: 1000px){
    #header-image {
        max-height: 380px;
    }
}
@media (max-width: 600px){
    #header-image {
        max-height: 220px;
    }
}

.container {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.inside {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    vertical-align: top;
    width: 100%;
    max-width: 1200px;
    padding: 10px 20px 20px 20px;
    margin: 0 auto;
    background-color: #fff;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.sidebar {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    vertical-align: top;
    width: 275px;
    max-width: 275px;
    padding: 10px 10px 20px 20px;
    margin: 0;
    -webkit-flex: 1 0 275px;
    -ms-flex: 1 0 275px;
    flex: 1 0 275px;
}

.inside .container{
    flex-direction: column;
}

.inside label{
    display: block;
}

@media screen and (max-width: 768px) {
    .inside {
        padding: 0;
    }
}

/* ui-dialog */

.ui-dialog-close-icon, .ui-dialog-titlebar-close {
    background-image: url('../images/icon_close.svg');
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    display: block;
}

.ui-dialog .ui-dialog-titlebar-close {
    position: absolute;
    right: .3em;
    top: 50%;
    width: 30px;
    margin: -15px 0 0 0;
    padding: 4px;
    height: 30px;
}

.ui-dialog .ui-dialog-title {
    font-size: 2rem;
    font-family: var(--heads);
    text-transform: capitalize;
    line-height: 1.75;
}

.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
    font-family: inherit;
}

.ui-widget-header {
    background-color: var(--darkgray);
    color: #fff;
}

@media (max-width: 840px) {
    .sidebar {
        width: 100%;
        max-width: 1000px;
        margin: 0 auto;
    }
}

.row {
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    /*! flex-flow: row wrap; */
}

.row .row {
    margin-left: -.625rem;
    margin-right: -.625rem;
}



/**
 * Menu
 */

#desktop_menu {
    width: 100%;
    height: 58px;
}

@media (max-width: 860px) {
    #desktop_menu {
        height: 40px;
    }
}

#menu-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 20;
    background-color: rgba(0, 0, 0, 0.7);
}

#main-menu-links {
    display: flex;
    position: relative;
    justify-content: flex-end;
}

#desktop_menu #main-menu-links {
    justify-content: center;
}

#main-menu-links div {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.4vw;
    padding: 20px 1.8vw 18px 1.8vw;
}

@media (min-width: 1140px) {
    #main-menu-links div {
        font-size: 1.1em;
        padding: 20px 10px;
    }
}


#main-menu-links div a{
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
}

#main-menu-links div:hover, #main-menu-links div:hover a, #main-menu-links div a:hover {
    cursor: pointer;
    color: var(--pink);
    background-color: #ffffff;
}



#drop-down {
    position: absolute;
    top: 98px;
    left: 0px;
    width: 100%;
    background-color: #ffffff;
    padding: 0px 0px !important;
}

.menu-style{
    max-width: 1000px;
    margin: auto;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    padding-top: 10px;
}
.menu-style div {
    min-height: 200px;
    margin: 0px, auto;
    padding-top: 50px;
    padding-bottom: 50px;
    color: #000000 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu-style div p {
    font-size: 0.9em;
    line-height: 20px;
}

.menu-style div p a {
    text-decoration: none;
}

.menu-info{
    color: white;
    font-family: var(--heads);
    font-size: 16px;
    letter-spacing: 0.2px;
    line-height: 1.2;
    text-transform: uppercase;
    padding-top: 25px;
}

@media (max-width: 860px) {
    .menu-style{
        width: 100%;
        flex-wrap: wrap;
    }
    .menu-style div {
        width: 50%;
    }
}


.close_x {
    position: absolute;
    top: 10px;
    right: 100px !important;
    width: 20px !important;
    height: 20px !important;
    margin-top: 0px !important;
    text-align: right !important;
    z-index: 100;
}
#main-close_x {
    display: none;
}

#click-to-close {
    width: 100%;
    height: 100%;
}

#open-menu {
    display: none;
}
@media (max-width: 900px) {
    .header-container {
        height: 100px;
        justify-content: space-between;
        padding: 0 40px;
    }
    #main-logo {
        height: 45px;
        width: auto;
        text-align: center;
    }
    #open-menu {
        z-index: 300;
        display: flex;
        width: 100%;
        height: 65px;
        line-height: 65px;
        font-weight: bold;
        color: var(--blue);
        text-align: center;
        cursor: pointer;
        background-color: #fff;
        justify-content: center;
    }

	#open-menu img {
		height: 30px;
	}

    #open-menu:hover {
        color: #fff;
        background-color: var(--blue);
    }
    .menu-button {
        display: block !important;
    }
    #main-menu-links {
        display: none;
        max-width: 1000px;
        top: 40px;
        background-color: #ffffff;
        text-align: center;
        z-index: 21;
    }
    #main-menu-links div {
        font-size: 1em;
    }
    #main-menu-links div a{
        color: #000000;
    }
    #width1000 {
        text-align: center;
    }
    #drop-down {
        top: 40px;
        height: auto;
    }
    .close_x {
        right: 20px !important;
    }
    #main-close_x {
        display: block;
        /* width: 100% !important; */
        height: 20px !important;
        padding: 0 !important;
    }
    #main-close_x img {
        width: 20px;
        height: 20px;
        padding: 0;
    }
    .menu-button {
        color: rgb(0, 0, 0) !important;
        font-weight: 700 !important;
    }
    .menu-button:hover {
        color: rgb(225, 0, 152) !important;
        font-weight: 700 !important;
    }
    .open-menu-inside{
        width: 30px !important;
        height: 40px !important;
        right: 10px;
        background-color: transparent !important;
    }
    .open-menu-inside:hover{
        background-color: transparent !important;
    }
    .menu-info{
        padding-top: 10px;
        font-size: 13px;
    }
}



.pricetable {
    width: 100%;
    border-collapse: collapse;
}

/* .pricetable tr:nth-child(even) {
    background-color: #DFE8EF;
} */

.pricetable td {
    vertical-align: middle;
    padding: 8px;
    text-align: center;
    min-width: 50px;
}

.pricetable th {
    text-align: center;
    background-color: rgb(46, 48, 144);
    color: #ffffff;
}

.pricetable .label {
    text-align: left;
    font-weight: bold;
}

.hotels {
    text-align: center;
    margin: auto, auto, 40px, auto;
    position: relative;
    overflow: auto;
}

.hotels_title {
    z-index: 10;
    background-color: #1D3D59;
    padding: 20px 0px 10px 0px;
}

.hotels .hotel {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    display: block;
    position: relative;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center bottom;
    float: left;
    width: 40%;
    min-width: 400px;
    min-height: 300px;
    border: 0px dotted green;
    margin: 10px;
}

@media (max-width: 550px) {
    .hotels .hotel {
        width: 90%;
        min-width: 200px;
        min-height: 200px;
        clear: left;
    }
}

@media (max-width: 400px) {
    .hotels .hotel {
        min-height: 150px;
    }
}

.hotel_info_bar {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    width: 100%;
    background-color: rgba(51, 41, 83, 0.7);
    color: #ffffff;
    font-family: var(--bodycopy);
    font-weight: 400;
    font-size: 1.0em;
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: left;
    padding: 10px 10px 10px 20px;
    position: absolute;
    bottom: 0px;
}

.hotel_name {
    font-size: 1.1em;
}

h2.hotelsoldout{
    font-size: 60px;
    color: #ffffff;
    margin-top: 60px;
}

h2.hotelsoldout span {
   color: white;
   background: rgba(51, 41, 83, 0.7);
   padding: 10px;
}




.homesponsor {
    display: inline-block;
}

.homesponsor img {
    margin: 10px;
}

.sponsor {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    display: none;
    width: 180px;
    height: 80px;
    padding: 6px 10px;
    margin: 15px;
    border: 5px solid rgba(255, 255, 255, 0.2);
    background-color: #ffffff;
}
.sponsor img {
    width: 100%;
    max-height: 58px;
}

.big {
    display: none;
    width: 300px;
    height: 120px;
}

p.display_text {
    font-size: 1.4em;
}

#sponsor-banner {
    width: 100%;
    max-width: 300px;
    height: 116px;
    margin: auto;
    background-image: url('/2023/template/images/CCSA23_sponsor_thanks.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
    cursor: pointer;
    margin-bottom: 60px;
}



.keynotes {
    text-align: center;
    margin: auto, auto, 40px, auto;
    position: relative;
}

.keynotes_title {
    z-index: 10;
    background-color: #332953;
    padding: 20px 0px 10px 0px;
}

.keynotes .speaker {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    display: block;
    position: relative;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    float: left;
    width: 25%;
    min-width: 200px;
    min-height: 200px;
    border: 0px dotted green;
}

.speaker_info_bar {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    width: 100%;
    background-color: rgba(51, 41, 83, 0.7);
    color: #ffffff;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 1.0em;
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: left;
    padding: 10px 10px 10px 20px;
    position: absolute;
    bottom: 0px;
}

.speaker_name {
    font-size: 1.1em;
}



/**
 * Footer
 */

.footer-container{
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    width: 100%;
    margin: auto;
    border-top: 1px solid var(--blue);
}

#footer {
    width: 100%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.footer_column {
    width: 100%;
    max-width: 250px;
    height: 150px;
    text-align: center;
    border-right: 1px solid #ADBFD8;
}

.first_footer_column {
    border-left: 1px solid #ADBFD8;
}

.footer_column h3 {
    font-size: 0.9em;
    line-height: 1.2em;
}

.footer_column p {
    font-size: 0.8em;
}


@media screen and (max-width: 1020px) {
    .footer_column {
        max-width: 350px;
    }
    .third_footer_column {
        border-left: 1px solid #ADBFD8;
    }
}

@media screen and (max-width: 720px) {
    .footer_column {
        min-width: 100%;
        height: auto;
        border: 0px !important;
    }

}

@media print{
    .footer-container {
        border-top: 1px solid #adadad;
        padding-top: 10px;
    }
    .footer_column {
        max-width: 25%;
    }
    .footer-container a,
    .footer-container p,
    #footer a,
    #footer p,
    #footer p a,
    #footer h3,
    .footer_column p{
        color: #555;
    }
}



/**
 * Input Forms
 */

html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

input[type='button']::-moz-focus-inner,
input[type='submit']::-moz-focus-inner {
    padding: 0;
    border: 0;
}

input[type='button'],
input[type='submit'],
.ui-dialog .ui-dialog-buttonpane button {
    font-family: var(--heads);
    border: 1px solid #1D3D59;
    border-radius: 26px;
    background-color: #1D3D59;
    color: #ffffff;
    font-size: 22px;
    padding: 12px 40px 4px 40px;
    text-decoration: none;
    text-transform: uppercase;
    -o-transition:.3s;
    -ms-transition:.3s;
    -moz-transition:.3s;
    -webkit-transition:.3s;
    transition:.3s;
    cursor: pointer;
}

input[type='button']:hover,
input[type='submit']:hover,
.ui-dialog .ui-dialog-buttonpane button:hover {
    background-color: #ffffff;
    color: #DA5097;
}

input[type='button'].smaller_button,
input[type='submit'].smaller_button  {
    font-size: 1.0em;
    line-height: 1.0em;
    min-width: 120px;
    height: 40px;
    padding: 5px 10px 5px 10px;
    margin-bottom: 10px;
}

input[type='text'],
input[type='tel'],
input[type='number'],
input[type='email'],
input[type='password'],
input[type='search'],
input[type='url'],
textarea {
    display: inline-block;
    box-sizing: border-box;
    width: 95%;
    max-width: 700px;
    height: 2.4375rem;
    padding: 0 0.5rem;
    border: 2px solid var(--blue);
    margin: 0 0 1rem;
    font-family: var(--bodycopy);
    font-size: 1rem;
    color: #1D3D59;
    background-color: #ffffff;
    border-radius: 7px;
    box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}

#login-email, #login-email:focus, #password, #password:focus {
    width: auto;
    min-width: 250px;
}

textarea {
    padding: 0.4rem 0.5rem;
    width: 95% !important;
    height: auto;
}

tr td input[type='text'],
tr td input[type='password'],
input[type='text'],
input[type='tel'],
input[type='number'],
input[type='url'],
input[type='search'],
tr td textarea,
tr td select {
    margin: 0;
}

select {
    display: inline-block;
    box-sizing: border-box;
    width: 95%;
    max-width: 700px;
    height: 2.4375rem;
    padding: .5rem;
    border: 1px solid #cacaca;
    margin: 0 0 1rem;
    font-family: var(--bodycopy);
    font-size: 1rem;
    color: #1D3D59;
    background-color: #ffffff;
    border-radius: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="32" height="24" viewBox="0 0 32 24"><polygon points="0,0 32,0 16,24" style="fill: rgb%2851, 51, 51%29"></polygon></svg>');
    background-size: 9px 6px;
    background-position: right center;
    background-origin: content-box;
    background-repeat: no-repeat;
    -webkit-appearance: none;
    -moz-appearance: none;
}

@media screen and (min-width: 0\0) {
    select {
        background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg==");
    }
}


.asterisk {
    display: inline-block;
    color: red;
    font-weight: bold;
    font-size: 16px;
}

#errors, #errors *, #errors *::before {
    color: red;
}

#cc_payment table tr td input,
#cc_payment table tr td select {
    height: initial;
    padding: 3px 6px;
    margin: initial;
    width: initial;
    max-width: initial;
    font-family: var(--bodycopy);
    font-size: initial;
    background-image: none;
}

#cc_payment table tr td select {
    -webkit-appearance: menulist;
    -moz-appearance: menulist;
}


/**
 * Checkboxes and Labels
 */

[type='checkbox'],
[type='radio'] {
    vertical-align: top;
    position: relative;
    top: 7px;
    width: 16px;
    height: 16px;
}

[type='checkbox']+label,
[type='radio']+label {
    vertical-align: top;
    display: inline-block;
    width: 95%;
}

[type='checkbox']+label[for],
[type='radio']+label[for] {
    cursor: pointer
}

@media (max-width: 500px) {
    [type='checkbox']+label,
    [type='radio']+label {
        width: 70%;
    }
}


/**
 * For Exhibitor Applications
 */

table#appstatus {
    width: auto;
    margin-top: 10px;
    margin-bottom: 30px;
}

table#appstatus tbody {
    border: none;
}

table#appstatus td {
    vertical-align: middle;
    padding: 0px 12px;
    color: #000;
    height: 30px;
}

table#appstatus td.done {
    background-color: #ddd;
    color: #000;
}

table#appstatus td.curr {
    background-color: var(--blue);
    background-image: url("/2019/template/images/app_arrow.gif");
    background-position: right;
    background-repeat: no-repeat;
    padding-right: 28px;
    color: #fff;
}

table#appstatus * {
    font-family: Arial;
    font-size: 11px;
}

@media screen and (max-width: 1199px) {
    table#appstatus {
        width: auto;
    }
    table#appstatus * {
        font-family: Arial;
        font-size: 10px;
    }
}

@media screen and (max-width: 767px) {
    table#appstatus {
        width: auto;
    }
    table#appstatus * {
        font-family: Arial;
        font-size: 7px;
    }
}

@media screen and (max-width: 550px) {
    table#appstatus {
        display: none;
    }
}

.exhibPayAmount {
    margin: 0px;
}

.exhibPayAmount span {
    display: inline-block;
    width: 150px;
    text-align: center;
    padding: 5px 0px 15px 0px;
    background-color: #eee;
    cursor: pointer;
    background-image: url("/2019/template/images/payamount_arrow_off.gif");
    background-position: bottom;
    background-repeat: no-repeat
}

.exhibPayAmount span.active {
    background-color: #58b5b9;
    color: #fff;
    font-weight: bold;
    background-image: url("/2019/template/images/payamount_arrow.gif")
}


/**
 * Tiles
 */

.tile_container {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

.tile_container div {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin: 0px 5px;
    text-align: center;
    border: 1px solid #cecece;
    border-radius: 5px;
    padding: 20px;
    cursor: pointer;
    position: relative;
}

.tile_container div:hover {
    background-color: #ededed;
}

.tile_container div img {
    width: 100%;
    max-width: 80px;
    border: none;
    margin-bottom: 10px;
}

.tile_container div h3 {
    text-align: center;
}

.tile_container div p {
    margin-bottom: 40px;
}

.tile_container div input[type='button'] {
    position: absolute;
    bottom: 0px;
    width: 60%;
    left: 50%;
    margin-left: -30%;
}

#pl_container * {
    margin-top: 5px;
}

@media (max-width: 750px) {
    .tile_container {
        display: block;
    }

    .tile_container div {
        -webkit-flex: none;
        -ms-flex: none;
        flex: none;
        width: 80%;
        margin: 10px auto;
    }
}


/**
 * More Styles
 */

.video-container {
    position:relative;
    padding-bottom:56.25%;
    padding-top:30px;
    height:0;
    overflow:hidden;
}

.video-container iframe, .video-container object, .video-container embed {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}

div.accordion {
    display: block;
    background-color: #3f0e61;
    color: #ffffff;
    cursor: pointer;
    padding: 18px;
    margin: 5px 10px 5px 0px;
    width: 93%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 18px;
    font-weight: 700;
    transition: 0.4s;
    clear: both;
}

div.accordion.active, div.accordion:hover {
    background-color: #3f0e61;
}

.rates_deadline {
    font-size: 14px;
    font-weight: 300;
}

.plus {
    float: right;
    text-align: right;
    color: #ffffff;
}

div.panel {
    padding: 0 18px;
    display: none;
    width: 93%;
    overflow: auto;
}

div.panel>div {
    float: left;
    padding: 10px 40px 10px 0px;
    display: block;
}

.floorplanFlex {
    display: flex;
    flex-direction: column;
}

.floorplanFlex .floorplanMenu {
    order: -1;
}

.floorplanFlex .floorplanMenu input[type='submit'] {
    height: initial;
    font-size: initial;
    line-height: initial;
    padding: 2px 15px;
    vertical-align: 1px;
}

@media (min-width: 768px) {
    .floorplanFlex {
        flex-direction: row;
        flex: 1;
    }

    .floorplanFlex .floorplanContent {
        flex: 1;
    }

    .floorplanFlex .floorplanMenu {
        flex: 0 0 12em;
        margin-right: 25px;
    }
}

/* Mobile Floorplan */
.floorplan-grid {
    display: grid;
    grid-template-columns: calc(100% - 440px) 400px;
    column-gap: 40px;
}

@media screen and (max-width: 1000px){
    .floorplan-grid {
        display: grid;
        grid-template-columns: auto;
    }
}

@media (max-width: 500px) {
    img {
        max-width: 100%;
    }
}


/**
 * Printing
 */

.print {
    display: none !important;
}

@media print {
    .print {
        display: block !important;
    }
    a:after {
        content: " (" attr(href) ")";
        font-size: 80%;
    }
    a[href^="#"]:after {
        display: none;
    }
    a {
        word-wrap: break-word;
    }

    .top_bar {
        display: none;
    }
    .banner {
        display: none;
    }
    .header-container {
        display: none;
    }
    #header-image {
        display: none;
    }
    .hotels {
        display: none;
    }
    .panel {
        display: block !important;
    }
}


/**
 * Booth Rates Grid
 */

#booth_rates_table {
    border-top: 1px solid #cccccc;
    border-left: 1px solid #cccccc;
    max-width: 100%;
}

#booth_rates_table td.top_row {
    background-color: var(--blue);
    color: #ffffff;
}

#booth_rates_table td.left_column {
    font-weight: 700;
}

#booth_rates_table td {
    text-align: center;
    border-right: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
    padding: 8px;
}

span.small {
    font-size: 12px;
}

@media (max-width: 500px) {
    #booth_rates_table td {
        padding: 2px;
        font-size: 11px;
    }

    span.small {
        font-size: 8px;
    }
}


/* Reg Form Steps */

#component_form_steps div {
    display: inline-block;
    background-color: #fff;
    border: 1px solid #777;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
}

#component_form_steps span {
    display: inline-block;
    line-height: 37px;
}

#component_form_steps div.curr {
    background-color: #7cc14d;
    color: #fff;
}

#component_form_steps div.done {
    background-color: #dedede;
}


/**
 * Booth Rates Grid
 */

img[src^='/GLOBAL/icons'] {
    vertical-align: -3px;
}

.pdf {
    background-image: url("/GLOBAL/icons/page_white_acrobat.png");
    background-repeat: no-repeat;
    background-position: right;
    padding-right: 20px;
}

.word_doc {
    background-image: url("/GLOBAL/icons/page_white_word.png");
    background-repeat: no-repeat;
    background-position: right;
    padding-right: 20px;
}


/**
 * Resources/Uploads Custom for CCSA
 */

.content_widget_container{
    width: 100%;
}
.content_widget_title{
    background-color: var(--blue);
    color: #fff;
    padding: 6px 5px 3px 5px;
}
.content_widget{
    width: 100%;
    height: 55vw;
}
.tote_toolbar_separator{
    display: none;
}
a .url_url {
    color: var(--blue);
    font-weight: 600;
    text-decoration: underline;
}
a:hover .url_url {
    color: var(--pink);
    text-decoration: none;
}
@media (min-width: 750px){
    .content_widget{
        width: 100%;
        height: 26vw;
        max-height: 350px;
    }
}

   span.showhide_plus, span.showhide_minus, span.plus_minus {
      display: inline;
      position: relative;
      float: right;
	 margin-left: 10px;
      bottom: 25px;
      right: 40px;
   }

   span.showhide_plus:hover, span.showhide_minus:hover, span.plus_minus:hover {
      cursor: pointer;
   }

   h2 {
      margin-top: 35px;
      margin-bottom: 20px;
   }

	.question {
	cursor: pointer;
	}

   .scam-warning {
      color: #fff;
      text-align: center;
      margin-top: 40px;
      font-size: 14px;
   }

   .scam-warning ul > li {
      list-style-type: none;
   }

	 .query_wrapper .query_input {
		 line-height: 2rem;
	 }

	 .query_wrapper h3 {
		color: var(--blue);
		font-weight: bold;
	 }
